home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / telecomm / sticpsrc.lzh / SOURCE.ARC / RCMD.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-05-20  |  405 b   |  14 lines

  1. /* remote command server definitions */
  2.  
  3. #define RCMD_PORT    333        /* default port for RCMD */
  4.  
  5. #define RCMD_LINE    128        /* maximum line length for cmds */
  6. #define RCMD_OBUF    128        /* size of one output buffer */
  7.  
  8. struct rcmd {
  9.     struct tcb *conn;        /* TCP connection */
  10.     struct mbuf *input;        /* input data buffer */
  11.     struct password pass;        /* password data */
  12. };
  13. #define NULLRCMD    ((struct rcmd *) 0)
  14.